home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / misc / Fudgit233.lha / Source / src / command.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-14  |  331 b   |  15 lines

  1.  
  2. struct Comm {
  3.     char     *name;
  4.     int      (*func)(int, char **, char *, struct Comm *);
  5.     char     *fname;
  6.     char     *usage;
  7.     char     *help;
  8. };
  9. /*
  10. I tried to solve a problem with HPUX that way: it seems to be a compiler bug...
  11. typedef struct Comm Command;
  12. */
  13. #define Command struct Comm
  14. typedef int Do (int, char **, char *, Command *);
  15.